home *** CD-ROM | disk | FTP | other *** search
- /*
- * Example Metronome ARexx script.
- *
- * You need to run the Metro first!
- *
- * Plays 4 crotchets then 8 quavers, four times.
- */
-
-
- ADDRESS METRO.1
-
- tempo 90 /* Set tempo */
- note 4 /* Set note type to crotchets */
- start /* Start */
- waitticks 3 /* Note: 1 click has already started */
-
- note 8 /* Change to quavers */
- waitticks 8 /* Wait for 8 quavers */
-
- do for 3 /* Do loop 3 times... once has been done already */
- note 4 /* Back to crotchets */
- waitticks 4 /* Wait for 4 crotchets */
-
- note 8 /* Change to quavers */
- waitticks 8 /* Wait for 8 quavers */
- end
-
- nomoreticks /* Stop and let last quaver finish playing */
-